226b0439bbe1eb2ed144a163827167635b492b69,src/main/java/org/joda/time/format/PeriodFormatterBuilder.java,PluralAffix,parse,#String#number#,1022
Before Change
(true, position, text1, 0, text1.length())) {
return position + text1.length();
}
if (periodStr.regionMatches
(true, position, text2, 0, text2.length())) {
return position + text2.length();
}
After Change
return position + text1.length();
}
}
if (periodStr.regionMatches
(true, position, text2, 0, text2.length())) {
if (!matchesOtherAffix(text2.length(), periodStr, position)) {
return position + text2.length();
}
}